home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Shopper 183
/
dpcs0503.iso
/
Components
/
Microsoft ASP
/
_SETUP.1
/
ASPWizard.jar
/
asp
/
wizard
/
util
/
DataSourceDesc.class
(
.txt
)
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1998-11-20
|
763 b
|
24 lines
package asp.wizard.util;
public class DataSourceDesc {
private String _name;
private String _type;
DataSourceDesc(String name, String type) {
this._name = name;
this._type = type;
}
public String getName() {
return this._name;
}
public String getType() {
return this._type;
}
public String toString() {
return this.getName();
}
}